10. Process Covariance Matrix

Process Covariance Matrix

00:00
00:00

Calculating Acceleration Noise Parameters

Before we discuss the derivation of the process covariance matrix Q, you might be curious about how to choose values for σax2 \sigma_{ax_{}}^2 and σay2 \sigma_{ay}^2 .

For the extended Kalman filter project, you will be given values for both.

Process Covariance Matrix Q - Intuition

As a reminder, here are the state covariance matrix update equation and the equation for Q.

P=FPFT+Q P' = FPF^T + Q

Q=(Δt44σax20Δt32σax200Δt44σay20Δt32σay2Δt32σax20Δt2σax200Δt32σay20Δt2σay2) Q = \begin{pmatrix} \frac{\Delta t^4}{{4}}\sigma_{ax}^2 & 0 & \frac{\Delta t^3}{{2}}\sigma_{ax}^2 & 0 \\ 0 & \frac{\Delta t^4}{{4}}\sigma_{ay}^2 & 0 & \frac{\Delta t^3}{{2}}\sigma_{ay}^2 \\ \frac{\Delta t^3}{{2}}\sigma_{ax}^2 & 0 & \Delta t^2\sigma_{ax}^2 & 0 \\ 0 & \frac{\Delta t^3}{{2}}\sigma_{ay}^2 & 0 & \Delta t^2\sigma_{ay}^2 \end{pmatrix}

Because our state vector only tracks position and velocity, we are modeling acceleration as a random noise. The Q matrix includes time Δt \Delta t to account for the fact that as more time passes, we become more uncertain about our position and velocity. So as Δt \Delta t increases, we add more uncertainty to the state covariance matrix P P .

Combining both 2D position and 2D velocity equations previously deducted formulas we have:

{px=px+vxΔt+axΔt22py=py+vyΔt+ayΔt22vx=vx+axΔtvy=vy+ayΔt \begin{cases} p_x' = p_x + v_x \Delta t + \frac{a_x \Delta t^2}{{2}}\\ p_y' = p_y + v_y \Delta t + \frac{a_y \Delta t^2}{{2}}\\ v_x' = v_x + a_x \Delta t\\ v_y' = v_y + a_y \Delta t \end{cases}

Since the acceleration is unknown we can add it to the noise component, and this random noise would be expressed analytically as the last terms in the equation derived above. So, we have a random acceleration vector ν \nu in this form:

ν=(νpxνpyνvxνvy)=(axΔt22ayΔt22axΔtayΔt) \nu = \begin{pmatrix} \nu_{px} \\ \nu_{py} \\ \nu_{vx} \\ \nu_{vy} \end{pmatrix} = \begin{pmatrix} \frac{a_x \Delta t^2}{{2}} \\ \frac{a_y \Delta t^2}{{2}} \\ a_x \Delta t \\ a_y \Delta t \end{pmatrix}

which is described by a zero mean and a covariance matrix Q Q , so νN(0,Q) \nu \sim N(0,Q) .

The vector ν \nu can be decomposed into two components a 4 by 2 matrix G G which does not contain random variables and a 2 by 1 matrix a a which contains the random acceleration components:

ν=(axΔt22ayΔt22axΔtayΔt)=(Δt2200Δt22Δt00Δt)(axay)=Ga \nu = \begin{pmatrix} \frac{a_x \Delta t^2}{{2}} \\ \frac{a_y \Delta t^2}{{2}} \\ a_x \Delta t \\ a_y \Delta t \end{pmatrix} = \begin{pmatrix} \frac{\Delta t^2}{{2}} & 0 \\ 0 & \frac{\Delta t^2}{{2}} \\ \Delta t & 0 \\ 0 & \Delta t \end{pmatrix} \begin{pmatrix} a_x\\ a_y \end{pmatrix} = Ga

Δt \Delta t is computed at each Kalman Filter step and the acceleration is a random vector with zero mean and standard deviations σax \sigma_{ax_{}} and σay \sigma_{ay} .

Based on our noise vector we can define now the new covariance matrix Q Q .
The covariance matrix is defined as the expectation value of the noise vector ν \nu times the noise vector νT \nu^T . So let’s write this down:

Q=E[ννT]=E[GaaTGT] Q = E[\nu \nu^T] = E[Gaa^TG^T]

As G G does not contain random variables, we can put it outside the expectation calculation.

Q=GE[aaT]GT=G(σax2σaxyσaxyσay2)GT=GQνGT Q = G E[aa^T] G^T = G \begin{pmatrix} \sigma_{ax}^2 & \sigma_{axy} \\ \sigma_{axy} & \sigma_{ay}^2 \end{pmatrix} G^T = G Q_{\nu} G^T

This leaves us with three statistical moments:

  • the expectation of ax times ax, which is the variance of ax squared: σax2 \sigma_{ax}^2 .
  • the expectation of ay times ay, which is the variance of ay squared: σay2 \sigma_{ay}^2 .
  • and the expectation of ax times ay, which is the covariance of ax ax and ay ay : σaxy \sigma_{axy} .

ax a_{x_{}} and ay a_{y_{}} are assumed uncorrelated noise processes. This means that the covariance σaxy \sigma_{axy_{}} in Qν Q_{\nu} is zero:

Qν=(σax2σaxyσaxyσay2)=(σax200σay2) Q_{\nu} = \begin{pmatrix} \sigma_{ax}^2 & \sigma_{axy} \\ \sigma_{axy} & \sigma_{ay}^2 \end{pmatrix} = \begin{pmatrix} \sigma_{ax}^2 & 0 \\ 0 & \sigma_{ay}^2 \end{pmatrix}

So after combining everything in one matrix we obtain our 4 by 4 Q Q matrix:

Q=GQνGT=(Δt44σax20Δt32σax200Δt44σay20Δt32σay2Δt32σax20Δt2σax200Δt32σay20Δt2σay2) Q = G Q_{\nu} G^T = \begin{pmatrix} \frac{\Delta t^4}{{4}}\sigma_{ax}^2 & 0 & \frac{\Delta t^3}{{2}}\sigma_{ax}^2 & 0 \\ 0 & \frac{\Delta t^4}{{4}}\sigma_{ay}^2 & 0 & \frac{\Delta t^3}{{2}}\sigma_{ay}^2 \\ \frac{\Delta t^3}{{2}}\sigma_{ax}^2 & 0 & \Delta t^2\sigma_{ax}^2 & 0 \\ 0 & \frac{\Delta t^3}{{2}}\sigma_{ay}^2 & 0 & \Delta t^2\sigma_{ay}^2 \end{pmatrix}

Note on Notation

Some authors describe Q Q as the complete process noise covariance matrix. And some authors describe Q Q as the covariance matrix of the individual noise processes. In our case, the covariance matrix of the individual noise processes matrix is called Qν Q_\nu , which is something to be aware of.